DicomObjects.NET.V8
DicomObjects Namespace / DicomDataSet Class / Write Method / Write(Byte[]) Method

The byte array to write dataset to




In This Topic
    Write(Byte[]) Method
    In This Topic
    Writes the dataset to a byte array
    Syntax
    'Declaration
     
    Public Overloads Sub Write( _
       ByRef Array() As Byte _
    ) 
    'Usage
     
    Dim instance As DicomDataSet
    Dim Array() As Byte
     
    instance.Write(Array)
    public void Write( 
       out byte[] Array
    )
    public:
    void Write( 
       [Out] array<byte>^ Array
    ) 

    Parameters

    Array

    The byte array to write dataset to

    Remarks

    Data may subsequently be read by the Read method or by other DICOM software.

    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also